home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / __MANDEL / MANDELBR / CMANDELP.H2 < prev    next >
Text File  |  1992-03-28  |  354b  |  21 lines

  1. //    CMandelPhase.h
  2.  
  3. #pragma once
  4.  
  5. #include <CObject.h>
  6. #include <Global.h>
  7. #include "CMandelDoc.h"
  8.  
  9. class CMandelPhase: public CObject {
  10.  
  11.     public:
  12.     
  13.         void                    IMandelPhase(CMandelDoc *, CMandelPhase *);
  14.         virtual void            DisposeAll(void);
  15.         virtual CMandelPhase *    Perform(void);
  16.     
  17.     protected:
  18.     
  19.         CMandelDoc *            itsDoc;
  20.         CMandelPhase *            itsNextPhase;
  21. };